home *** CD-ROM | disk | FTP | other *** search
- Path: keats.ugrad.cs.ubc.ca!not-for-mail
- From: c2a192@ugrad.cs.ubc.ca (Kazimir Kylheku)
- Newsgroups: comp.lang.c
- Subject: Re: Defeat password by C
- Date: 17 Apr 1996 23:23:35 -0700
- Organization: Computer Science, University of B.C., Vancouver, B.C., Canada
- Message-ID: <4l4n57INNb5g@keats.ugrad.cs.ubc.ca>
- References: <4l4cns$gs0@usenetp1.news.prodigy.com>
- NNTP-Posting-Host: keats.ugrad.cs.ubc.ca
-
- In article <4l4cns$gs0@usenetp1.news.prodigy.com>,
- Bubba Meigs <VRLL67A@prodigy.com> wrote:
- >I am a student who trying to learn how to program C++.
- >I just wonder if anyone know how to write a program by C++ to break the
- >password.
-
- main()
- {
- char pass[] = "mylamepassword";
-
- pass[8] = 0;
-
- return 0;
- }
-
-